home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-29 | 1.3 KB | 39 lines | [TEXT/CWIE] |
- //========================================================================================
- // Release Version: $ ODF 1 $
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- #ifndef SELECTION_H
- #define SELECTION_H
-
- //====================================================================
- // ----- FrameWork Includes -----
- #ifndef FWSELECT_H
- #include "FWSelect.h" // FW_CSelection
- #endif
-
- //====================================================================
- class CGraphics3DPart;
- class CGraphics3DFrame;
- class CGraphics3DContent;
-
- //====================================================================
- class CGraphics3DSelection : public FW_CSelection {
- public:
- FW_DECLARE_AUTO(CGraphics3DSelection)
- CGraphics3DSelection(Environment* ev,
- CGraphics3DContent* content);
- virtual ~CGraphics3DSelection();
- // overrides
- protected:
- // must override
- virtual void CloseSelection(Environment* ev);
- virtual void ClearSelection(Environment* ev);
- virtual FW_Boolean IsEmpty(Environment* ev) const;
- virtual void SelectAll(Environment* ev);
- virtual FW_CContent* GetSelectedContent(Environment* ev);
- private:
- CGraphics3DContent* fGraphics3DContent;
- };
-
- //====================================================================
- #endif